# Dream (9/10)
# Generated for MiSTer FPGA -- adds horizontal blur WITHOUT scanlines.
#
# Logic:
#   - Vertical coefficients sum to 128 at every phase, so no row is
#     dimmed: scanlines are completely suppressed.
#   - Horizontal coefficients are a Gaussian-shaped 4-tap kernel;
#     spreading weight across neighboring taps softens / blurs the
#     image (a stand-in for the softness a real CRT or a composite
#     blend would produce).
#
# range: -128..128   sum of each row must not exceed the range.
#
# Horizontal Coefficients
  33,   55,   33,    7
  31,   54,   35,    8
  28,   54,   37,    9
  26,   53,   39,   10
  24,   53,   40,   11
  22,   52,   42,   12
  20,   50,   44,   14
  18,   49,   46,   15
  17,   47,   47,   17
  15,   46,   49,   18
  14,   44,   50,   20
  12,   42,   52,   22
  11,   40,   53,   24
  10,   39,   53,   26
   9,   37,   54,   28
   8,   35,   54,   31
# Vertical Coefficients
   0,  128,    0,    0
   0,  128,    0,    0
   0,  127,    1,    0
   0,  125,    3,    0
   0,  120,    8,    0
   0,  112,   16,    0
   0,  101,   27,    0
   0,   85,   43,    0
   0,   64,   64,    0
   0,   43,   85,    0
   0,   27,  101,    0
   0,   16,  112,    0
   0,    8,  120,    0
   0,    3,  125,    0
   0,    1,  127,    0
   0,    0,  128,    0
